import { GetStaticPropsContext } from 'next'; declare function BlogPostPage(): JSX.Element; export declare function getStaticPaths(): Promise<{ paths: never[]; fallback: string; }>; export declare const getStaticProps: ({ locale, params, }: GetStaticPropsContext) => Promise<{ props: { dehydratedState?: undefined; }; notFound: boolean; } | { props: { dehydratedState: import("react-query/hydration").DehydratedState; }; notFound?: undefined; }>; export default BlogPostPage;